home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / jboss_source.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  83 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6. # Ref:
  7. #
  8.  
  9. if(description)
  10. {
  11.  script_id(11690);
  12.  script_bugtraq_id(7764);
  13.  script_version("$Revision: 1.2 $");
  14.  
  15.  name["english"] = "JBoss source disclosure";
  16.  script_name(english:name["english"]);
  17.  
  18.  desc["english"] = "
  19. It is possible to make the remote web server disclose the source
  20. code of its JSP pages by appending a NULL character to the name
  21. of the JSP files requested (ie: foo.jsp%00).
  22.  
  23. An attacker may use this flaw to get the source code of your CGIs
  24. and possibly obtain passwords and other relevant information about
  25. this host.
  26.  
  27. Solution : None at this time
  28. Risk factor : High";
  29.  
  30.  script_description(english:desc["english"]);
  31.  
  32.  summary["english"] = "Attempts to read the source of a jsp page";
  33.  
  34.  script_summary(english:summary["english"]);
  35.  
  36.  script_category(ACT_GATHER_INFO);
  37.  
  38.  script_copyright(english:"This script is Copyright (C) 2003 Tenable Network Security");
  39.  family["english"] = "CGI abuses";
  40.  family["francais"] = "Abus de CGI";
  41.  script_family(english:family["english"], francais:family["francais"]);
  42.  script_dependencie("find_service.nes", "http_version.nasl");
  43.  script_require_ports("Services/www", 8080);
  44.  exit(0);
  45. }
  46.  
  47. # Check starts here
  48.  
  49. include("http_func.inc");
  50. include("http_keepalive.inc");
  51. include("misc_func.inc");
  52.  
  53. function check(file)
  54. {
  55.  req = http_get(item:file, port:port);
  56.  res = http_keepalive_send_recv(port:port, data:req);
  57.  if( res == NULL ) exit(0);
  58.  if("<%" >< res) return 1;
  59.  return 0;
  60. }
  61.  
  62. ports = add_port_in_list(list:get_kb_list("Services/www"), port:8080);
  63. foreach port (ports)
  64. {
  65.  if(get_port_state(port))
  66.  {
  67.  files = get_kb_list(string("www/", port, "/content/extensions/jsp"));
  68.  if(isnull(files))files = make_list("/web-console/ServerInfo.jsp");
  69.  n = 0;
  70.  foreach file (files)
  71.   {
  72.   if(check(file:file) == 0)
  73.    {
  74.    file = str_replace(string:file, find:".jsp", replace:".jsp%00");
  75.    if(check(file:file)) { security_hole(port); exit(0); }
  76.   }
  77.   n ++;
  78.   if(n > 20)break;
  79.   }
  80.  }
  81. }
  82.